home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / tcclib.zip / DEMO3.C < prev    next >
C/C++ Source or Header  |  1988-12-02  |  403b  |  17 lines

  1. /*****************************************************************
  2.                            GetFileDemo
  3. ******************************************************************/
  4. #include "tcclib.h"
  5. #include <conio.h>
  6.  
  7. void GetFileDemo()
  8. {
  9.     char Mask[50];
  10.  
  11.     clrscr();
  12.     Accept( 30, 10, "Mask : ", Mask, 40 );
  13.     AtSayF( 20, 10, "The file you chose was %s",
  14.         GetFile( 5, 5, 75, 20, Mask, 0xff, 1 ) );
  15.     GComm();
  16. }
  17.